Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ngx translate 16 #1496

Merged
merged 45 commits into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
2ee6026
Update README.md
CodeAndWeb Sep 5, 2024
e9dc562
#1444 fixed example
CodeAndWeb Sep 17, 2024
98fbf37
.gitignore
CodeAndWeb Sep 17, 2024
87798de
updated dependency in http-loader
CodeAndWeb Sep 5, 2024
0a19257
Readme updated for newer versions of Angular.
CodeAndWeb Sep 17, 2024
2ffd073
Merged master
CodeAndWeb Sep 17, 2024
50df6ee
Create ngx-translate-test.yml
CodeAndWeb Sep 17, 2024
18c2019
Fixed prebuild script to not fail if dist folder does not exist
CodeAndWeb Sep 17, 2024
cbe2e3b
Merge branch 'master' of github.com:CodeAndWeb/ngx-translate
CodeAndWeb Sep 17, 2024
eec6cbd
action
CodeAndWeb Sep 17, 2024
a82f81b
Build badge
CodeAndWeb Sep 17, 2024
eead4f5
Badge
CodeAndWeb Sep 17, 2024
a0cd5a5
Updated package version to 15
CodeAndWeb Sep 18, 2024
5174863
Updated project to Angular 18,
CodeAndWeb Sep 18, 2024
176eab1
Update ngx-translate-test.yml
CodeAndWeb Sep 18, 2024
4d1ab07
Merge commit '176eab14bfcde3ad19f6de5a2a5280ae854fe324'
CodeAndWeb Sep 18, 2024
f973151
Using explicit types instead of any. Moved getValue from translate.pa…
CodeAndWeb Sep 19, 2024
18221fc
Readme, licenses
CodeAndWeb Sep 23, 2024
1edb3ef
package.json
CodeAndWeb Sep 23, 2024
ccd17af
Made TranslatePipe and TranslateDirective standalone.
CodeAndWeb Sep 23, 2024
20cbdf5
https://github.com/ngx-translate/core/pull/1427
CodeAndWeb Sep 23, 2024
072722f
Added proviceTranslateService() for standalone modules
CodeAndWeb Sep 24, 2024
7acc672
Small demo project for experimenting.
CodeAndWeb Sep 24, 2024
c5c5798
Introducing provideTranslateService() instead of TranslateModule.forR…
CodeAndWeb Sep 24, 2024
e5f0ad9
Renamed InjectionToken USE_STORE to ISOLATE_TRANSLATE_SERVICE since t…
CodeAndWeb Sep 24, 2024
66a03dc
Version bump to beta.2
CodeAndWeb Sep 24, 2024
4511ded
Removed test-app from testing. It's for interactive experimenting whi…
CodeAndWeb Sep 24, 2024
e829d47
Added the extraction marker.
CodeAndWeb Sep 24, 2024
e5558ff
https://github.com/ngx-translate/core/pull/1411
CodeAndWeb Sep 25, 2024
f304f9b
Additional tests for recursive object translation.
CodeAndWeb Sep 25, 2024
0256722
https://github.com/ngx-translate/core/pull/1382/files
CodeAndWeb Sep 25, 2024
6aa94ed
Removed accidentally added console.logs
CodeAndWeb Sep 25, 2024
79cb220
Updated API Types in TranslateService
CodeAndWeb Sep 25, 2024
816b263
Made getTranslation deprecated
CodeAndWeb Sep 26, 2024
146140e
Always set currentLang to the language, use() was called last, not th…
CodeAndWeb Sep 26, 2024
17e5c68
Cleaned imports
CodeAndWeb Oct 1, 2024
32366f3
Fixed comment and exporting util functions
CodeAndWeb Oct 2, 2024
edb5ebc
Release 16.0.0
CodeAndWeb Oct 2, 2024
e1a883a
Using the newest angular version by default.
CodeAndWeb Oct 2, 2024
3d5b267
Update README.md
CodeAndWeb Oct 31, 2024
8d8a20e
Merge pull request #1494 from CodeAndWeb/master
CodeAndWeb Oct 31, 2024
c238d8a
Updated package data back to @ngx-translate/core
CodeAndWeb Oct 31, 2024
60ab189
Removed unused travis.yml
CodeAndWeb Oct 31, 2024
a3c7155
Release v16.0.0-rc.0
CodeAndWeb Oct 31, 2024
d31df87
Version 16.0.0
CodeAndWeb Nov 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .bitmap

This file was deleted.

6 changes: 2 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# editorconfig.org

# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

Expand Down
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

32 changes: 0 additions & 32 deletions .eslintrc.js

This file was deleted.

52 changes: 0 additions & 52 deletions .github/workflows/main.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/ngx-translate-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Node.js CI

on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build-all
- run: npm run test-ci
155 changes: 43 additions & 112 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,112 +1,43 @@
# Bit
.bit
public

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn
.yarn-integrity
.yarn

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

.history

# IDEs
.vscode
.idea/
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/tmp
/out-tsc
/.angular

# dependencies
/node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db

packages/core/.idea
packages/http-loader/.idea
6 changes: 0 additions & 6 deletions .prettierrc.js

This file was deleted.

3 changes: 2 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Copyright (c) 2023 Olivier Combe
Copyright (c) 2018 Olivier Combe
Copyright (c) 2024 Andreas Löw / CodeAndWeb GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
Loading