Skip to content

Commit

Permalink
Merge pull request #7 from codeforreal1/v1.2.0
Browse files Browse the repository at this point in the history
V1.2.0
  • Loading branch information
niraj-khatiwada authored May 27, 2024
2 parents 037394d + 567bdbd commit faf8bec
Show file tree
Hide file tree
Showing 59 changed files with 2,821 additions and 1,174 deletions.
1 change: 1 addition & 0 deletions .million/store.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"encodings":[],"componentData":{}}
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
public-hoist-pattern[]=*@nextui-org/*
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,21 @@ Bug Fixes:

- Fix typo `vide_duration`. ([f73df39f223e023611b0c4e35daf5814edd4af7c](https://github.com/codeforreal1/compressO/commit/f73df39f223e023611b0c4e35daf5814edd4af7c)). Thanks to [mbifulco](https://github.com/mbifulco) for the PR.
- Update Readme to reflect correct windows installer extension. ([6459892acf37db67aab27342aa5dae39d4fc7987](https://github.com/codeforreal1/compressO/commit/6459892acf37db67aab27342aa5dae39d4fc7987)).

### 1.2.0

Features:

- File Drag & Drop support [d744fab04f85f6fd40c59b306486235c171d6fb3](https://github.com/codeforreal1/compressO/commit/d744fab04f85f6fd40c59b306486235c171d6fb3)
- Cancel in-progress compression [ca5bceb9fde92bcbf9c8ef418691e21278aac9e6](https://github.com/codeforreal1/compressO/commit/ca5bceb9fde92bcbf9c8ef418691e21278aac9e6)
- Quality slider to select from low, medium or hight compression quality [b65647ce89082243afad7e83b782200a251c3c10](https://github.com/codeforreal1/compressO/commit/b65647ce89082243afad7e83b782200a251c3c10)

Enhancements:

- Video configuration UI has been revamped to adjust new settings [b65647ce89082243afad7e83b782200a251c3c10](https://github.com/codeforreal1/compressO/commit/b65647ce89082243afad7e83b782200a251c3c10)
- Window size and position persistence. [cf0644c5a6db7cc1e42841dc0d88fb039df3e1d5](https://github.com/codeforreal1/compressO/commit/cf0644c5a6db7cc1e42841dc0d88fb039df3e1d5)

Bug Fixes:

- Window size and position persistence on every restart. https://github.com/codeforreal1/compressO/issues/2
- Accessibility fixes for scaled resolutions [315b26fbf71dcfb4fce93ebe12a78214f332874c](https://github.com/codeforreal1/compressO/commit/315b26fbf71dcfb4fce93ebe12a78214f332874c)
8 changes: 2 additions & 6 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/** @type {import('next').NextConfig} */

import million from 'million/compiler'
import analyzeBundle from '@next/bundle-analyzer'

const packageJSON = await import('./package.json', {
Expand All @@ -15,6 +14,7 @@ const nextConfig = withBundleAnalyzer({
output: 'export',
distDir: './dist',
cleanDistDir: true,
reactStrictMode: false,
webpack(config, { webpack }) {
config.module.rules.push({
test: /\.svg$/,
Expand All @@ -36,8 +36,4 @@ const nextConfig = withBundleAnalyzer({
},
})

const millionConfig = {
auto: true,
}

export default million.next(nextConfig, millionConfig)
export default nextConfig
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "compresso",
"version": "1.1.0",
"version": "1.2.0",
"private": true,
"author": {
"name": "Code For Real",
Expand Down Expand Up @@ -28,6 +28,7 @@
"@nextui-org/modal": "^2.0.33",
"@nextui-org/progress": "^2.0.28",
"@nextui-org/select": "^2.1.27",
"@nextui-org/slider": "^2.2.9",
"@nextui-org/spinner": "^2.0.28",
"@nextui-org/system": "^2.1.2",
"@nextui-org/tabs": "^2.0.29",
Expand All @@ -40,21 +41,23 @@
"clsx": "^2.0.0",
"framer-motion": "^10.16.4",
"husky": "^8.0.1",
"million": "^2.6.4",
"lodash": "^4.17.21",
"next": "14.0.2",
"next-themes": "^0.2.1",
"pretty-bytes": "^6.1.1",
"react": "^18",
"react-dom": "^18",
"sonner": "^1.4.41",
"tailwind-merge": "^1.14.0",
"valtio": "^1.13.2",
"vaul": "^0.9.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.0.3",
"@next/eslint-plugin-next": "^12.1.0",
"@svgr/webpack": "^8.1.0",
"@tauri-apps/cli": ">=2.0.0-beta.0",
"@types/lodash": "^4.17.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
Expand All @@ -76,6 +79,7 @@
"eslint-plugin-unused-imports": "^3.0.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.31",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.0",
"typescript": "^5"
},
Expand Down
Loading

0 comments on commit faf8bec

Please sign in to comment.